From: Andreas Schwab Date: Fri, 11 Mar 2011 00:19:57 +0000 (+0100) Subject: * .gdbinit (pwinx, xbuffer): Fix access to buffer name. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4424 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=cb6f99c81066da7a3a0e72df1671d4a09b2e4947;p=emacs.git * .gdbinit (pwinx, xbuffer): Fix access to buffer name. --- diff --git a/src/.gdbinit b/src/.gdbinit index 3072dc956b9..2cf5663df91 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -392,7 +392,7 @@ define pwinx printf "Window %d ", $int xgetptr $w->buffer set $tem = (struct buffer *) $ptr - xgetptr $tem->name + xgetptr $tem->name_ printf "%s", ((struct Lisp_String *) $ptr)->data printf "\n" xgetptr $w->start @@ -938,7 +938,7 @@ end define xbuffer xgetptr $ print (struct buffer *) $ptr - xgetptr $->name + xgetptr $->name_ output ((struct Lisp_String *) $ptr)->data echo \n end diff --git a/src/ChangeLog b/src/ChangeLog index 2371a8a7555..6c83175bfae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-03-11 Andreas Schwab + + * .gdbinit (pwinx, xbuffer): Fix access to buffer name. + 2011-03-09 Juanma Barranquero * search.c (compile_pattern_1): Remove argument regp, unused since